home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 351-375 / 359 / dice / dice.lzh / lib / fd / mkdir.c < prev    next >
C/C++ Source or Header  |  1990-05-17  |  218b  |  22 lines

  1.  
  2. /*
  3.  *  MKDIR.C
  4.  */
  5.  
  6. #include <libraries/dos.h>
  7. #include <errno.h>
  8.  
  9. int
  10. mkdir(fileName)
  11. const char *fileName;
  12. {
  13.     BPTR lock;
  14.  
  15.     if (lock = CreateDir(fileName)) {
  16.     UnLock(lock);
  17.     return(0);
  18.     }
  19.     return(-1);
  20. }
  21.  
  22.